// Copy string inbuilt function.
// Date 23:20 12/10/2016
// By Ben a.k.a DreamVB

#include <iostream>

using namespace std;
using std::cout;
using std::endl;

int main(int argc, char *argv[]){
	
	char *s0 = "Copy s0 to s1 using in built function strcpy";
	char *s1 = (char*)malloc(strlen(s0));

	//Copy s0 to s1
	strcpy(s1, s0);

	cout << "s1 contains:" << endl;
	cout << s1 << endl;

	system("pause");
	return 0;
}